import * as React from 'react'; import { CheckboxField } from '@aws-amplify/ui-react'; export const CheckboxFieldControlledExample = () => { const [checked, setChecked] = React.useState(false); return ( setChecked(e.target.checked)} label="Subscribe" /> ); };